home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / tagcalls / amigaguide.inc next >
Text File  |  1998-06-24  |  2KB  |  73 lines

  1. pattern AddAmigaGuideHost(_h,_name, ...) is
  2.     push a6;
  3.     push.l ...;
  4.     safe a0:=_h; d0.l:=_name; a1:=sp;;
  5.     a6:=AmigaGuideBase; jsr [a6-138];
  6.     sp:=sp+countof(...)<<2;
  7.     pop a6;
  8. endp;                                                            # ADDAMIGAGUIDEHOST
  9.  
  10. pattern OpenAmigaGuide(_nag, ...) is
  11.     push a6;
  12.     push.l ...;
  13.     safe a0:=_nag; a1:=sp;;
  14.     a6:=AmigaGuideBase; jsr [a6-54];
  15.     sp:=sp+countof(...)<<2;
  16.     pop a6;
  17. endp;                                                            # OPENAMIGAGUIDE
  18.  
  19. pattern OpenAmigaGuideAsync(_nag, ...) is
  20.     push a6;
  21.     push.l ...;
  22.     safe a0:=_nag; d0.l:=sp;;
  23.     a6:=AmigaGuideBase; jsr [a6-60];
  24.     sp:=sp+countof(...)<<2;
  25.     pop a6;
  26. endp;                                                            # OPENAMIGAGUIDEASYNC
  27.  
  28. pattern RemoveAmigaGuideHost(_hh, ...) is
  29.     push a6;
  30.     push.l ...;
  31.     safe a0:=_hh; a1:=sp;;
  32.     a6:=AmigaGuideBase; jsr [a6-144];
  33.     sp:=sp+countof(...)<<2;
  34.     pop a6;
  35. endp;                                                            # REMOVEAMIGAGUIDEHOST
  36.  
  37. pattern SendAmigaGuideCmd(_cl,_cmd, ...) is
  38.     push a6;
  39.     push.l ...;
  40.     safe a0:=_cl; d0.l:=_cmd; d1.l:=sp;;
  41.     a6:=AmigaGuideBase; jsr [a6-102];
  42.     sp:=sp+countof(...)<<2;
  43.     pop a6;
  44. endp;                                                            # SENDAMIGAGUIDECMD
  45.  
  46. pattern SendAmigaGuideContext(_cl, ...) is
  47.     push a6;
  48.     push.l ...;
  49.     safe a0:=_cl; d0.l:=sp;;
  50.     a6:=AmigaGuideBase; jsr [a6-96];
  51.     sp:=sp+countof(...)<<2;
  52.     pop a6;
  53. endp;                                                            # SENDAMIGAGUIDECONTEXT
  54.  
  55. pattern SetAmigaGuideAttrs(_cl, ...) is
  56.     push a6;
  57.     push.l ...;
  58.     safe a0:=_cl; a1:=sp;;
  59.     a6:=AmigaGuideBase; jsr [a6-108];
  60.     sp:=sp+countof(...)<<2;
  61.     pop a6;
  62. endp;                                                            # SETAMIGAGUIDEATTRS
  63.  
  64. pattern SetAmigaGuideContext(_cl,_id, ...) is
  65.     push a6;
  66.     push.l ...;
  67.     safe a0:=_cl; d0.l:=_id; d1.l:=sp;;
  68.     a6:=AmigaGuideBase; jsr [a6-90];
  69.     sp:=sp+countof(...)<<2;
  70.     pop a6;
  71. endp;                                                            # SETAMIGAGUIDECONTEXT
  72.  
  73.